FormatBooleanAsString
Type
statement
Summary
Formats a boolean value as a string
Syntax
format <Operand> as string
Description
Use FormatBooleanAsString when you want to manipulate a boolean value as text.
Parameters
Name | Type | Description |
---|---|---|
Operand | An expression that evaluates to a boolean value. |
Examples
variable tVar as String
format 1 = 0 as String into tVar
put "e" into char 3 of tVar -- tVar is "tree"